From b3b83545c4a7ec0292d725aad0fdec56fcc2a761 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 29 Nov 2012 23:05:07 -0500 Subject: [PATCH] Don't return prematurely This code was clearly meant to return _after_ the loop. Don't put the return inside the loop body, then. --- gtk/gtkcssshorthandpropertyimpl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gtk/gtkcssshorthandpropertyimpl.c b/gtk/gtkcssshorthandpropertyimpl.c index 0b467ab549..b01494b7da 100644 --- a/gtk/gtkcssshorthandpropertyimpl.c +++ b/gtk/gtkcssshorthandpropertyimpl.c @@ -565,8 +565,8 @@ parse_background (GtkCssShorthandProperty *shorthand, { g_ptr_array_set_free_func (arrays[i], (GDestroyNotify) _gtk_css_value_unref); g_ptr_array_unref (arrays[i]); - return FALSE; } + return FALSE; } for (i = 0; i < 6; i++) @@ -668,8 +668,8 @@ parse_transition (GtkCssShorthandProperty *shorthand, { g_ptr_array_set_free_func (arrays[i], (GDestroyNotify) _gtk_css_value_unref); g_ptr_array_unref (arrays[i]); - return FALSE; } + return FALSE; } for (i = 0; i < 4; i++) @@ -784,8 +784,8 @@ parse_animation (GtkCssShorthandProperty *shorthand, { g_ptr_array_set_free_func (arrays[i], (GDestroyNotify) _gtk_css_value_unref); g_ptr_array_unref (arrays[i]); - return FALSE; } + return FALSE; } for (i = 0; i < 6; i++) -- 2.30.2